home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Network Login Win 2.xpl < prev    next >
Text File  |  2001-01-21  |  2KB  |  57 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="Startup/Shutdown\Startup\Windows 9x/ME\61) Inside Login Window"
  5. "NAME"="Windows 9x/ME 'Cancel' button"
  6. "VERSION"="1.11"
  7. "OSVERSION"="10101"
  8. "LANGUAGE"="VBScript"
  9. "WARNING"="1"
  10. "TEXT 1"="Show "Cancel" button in Login window"
  11. "DESCRIPTION 1"="If the "Cancel" button is enabled, it is possible to use the computer without login. If disabled, a user needs to supply a valid account to use the computer."
  12. "DESCRIPTION 2"="WARNING: The "Cancel" button cannot be safely disabled if the computer is not actually logging in to an NT or Netware domain, or to the Family Logon client (Win 98/ME). Otherwise it will make your system UNUSABLE."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17. "COMMENT 2"="Thanks to CptSiskoX for his help!"
  18.  
  19.  
  20. sV1="HKLM\Network\Logon\MustBeValidated" 'DW
  21.  
  22. Sub Plugin_Initialize 
  23.     i=RegReadValue(sv1)
  24.     If IsEmpty(i)=true then 
  25.        SetUIElement 1,true
  26.     else
  27.        if i=0 then
  28.           SetUIElement 1,true
  29.        end if
  30.     end if
  31. End Sub
  32.  
  33. Sub Plugin_CheckData(ElementIndex)
  34. End Sub
  35.  
  36. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  37.  b=GetUIElement(1)
  38.  if b=true then
  39.     i=RegReadValue(sV1)
  40.     if IsNull(i)=false then
  41.        RegDeleteValue sV1
  42.     end if
  43.  else
  44.     Call RegWriteValue(sV1,1,2)
  45.  end if
  46.  
  47.  
  48.  
  49.  Call Logoff
  50. End Sub
  51.  
  52. Sub Plugin_Terminate 
  53. End Sub
  54.  
  55.  
  56.  
  57.